-
Notifications
You must be signed in to change notification settings - Fork 54
Sync .gitignore and extensions.json across repos #367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
PoliCheck Scan ReportThe following report lists PoliCheck issues in PR files. Before you merge the PR, you must fix all severity-1 and severity-2 issues. The AI Review Details column lists suggestions for either removing or replacing the terms. If you find a false positive result, mention it in a PR comment and include this text: #policheck-false-positive. This feedback helps reduce false positives in future scans. ✅ No issues foundMore information about PoliCheckInformation: PoliCheck | Severity Guidance | Term |
|
Learn Build status updates of commit dc0ccf1: ✅ Validation status: passed
For more details, please refer to the build report. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR synchronizes configuration files (.gitignore and extensions.json) across repositories to maintain consistency. The changes expand ignored files/directories and update VS Code extension recommendations.
Changes:
- Added 4 new VS Code extensions and removed 1 extension from recommendations
- Expanded .gitignore with additional entries for build artifacts, temporary files, and platform-specific files
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .vscode/extensions.json | Added vale, gremlins, markdown-yaml-preamble, and errorlens extensions; removed markdown-pdf extension |
| .gitignore | Reorganized and expanded ignore patterns to include additional build artifacts, temporary files, and development-related directories |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "docsmsft.docs-authoring-pack", | ||
| "marvhen.reflow-markdown", | ||
| "chrischinchilla.vale-vscode", | ||
| "ms-vscode.powershell", | ||
| "nhoizey.gremlins", | ||
| "shuworks.vscode-table-formatter", | ||
| "bierner.markdown-yaml-preamble", |
Copilot
AI
Jan 12, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The extensions list is not in alphabetical order. The list should be sorted alphabetically by extension ID for better maintainability. For example, 'bierner.markdown-yaml-preamble' should come before 'chrischinchilla.vale-vscode', and 'chrischinchilla.vale-vscode' should come before 'docsmsft.docs-authoring-pack'.
| "docsmsft.docs-authoring-pack", | |
| "marvhen.reflow-markdown", | |
| "chrischinchilla.vale-vscode", | |
| "ms-vscode.powershell", | |
| "nhoizey.gremlins", | |
| "shuworks.vscode-table-formatter", | |
| "bierner.markdown-yaml-preamble", | |
| "bierner.markdown-yaml-preamble", | |
| "chrischinchilla.vale-vscode", | |
| "docsmsft.docs-authoring-pack", | |
| "marvhen.reflow-markdown", | |
| "ms-vscode.powershell", | |
| "nhoizey.gremlins", | |
| "shuworks.vscode-table-formatter", |
PR Summary
Sync .gitignore and extensions.json across repos
PR Checklist